// Celcius to Fahrenhet calulator
// Version 1.0
// Date 20:23 10/10/2016
// By Ben a.k.a DreamVB

#include <iostream>

using namespace std;
using std::cout;
using std::endl;
using std::cin;

int main(int argc, char *argv[]){
	float f = 0;
	float c = 0;

	cout << "Enter celsius tempture : ";
	//Get celsius tempture
	cin >> c;
	//Calc fahrenheit
	f = (c * 9 / 5 + 32);
	//Display result
	cout << "Degrees Fahrenheit : " << f << endl;

	system("pause");
	return 0;
}